home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Developers / shutdown-fx-20-c / sfx init ƒ / code ƒ / globals.h < prev    next >
Text File  |  1994-07-11  |  264b  |  18 lines

  1. // used by show init.c
  2.  
  3. struct QDGlobals {
  4.     char privates[76];
  5.     long randSeed;
  6.     BitMap screenBits;
  7.     Cursor arrow;
  8.     Pattern dkGray;
  9.     Pattern ltGray;
  10.     Pattern gray;
  11.     Pattern black;
  12.     Pattern white;
  13.     GrafPtr thePort;
  14.     long    end;
  15. };
  16.  
  17. typedef struct QDGlobals QDGlobals;
  18.